From 47e572881dcc4359d38702bbae1f397a61190f05 Mon Sep 17 00:00:00 2001 From: robertl Date: Sat, 18 Jul 2009 05:53:15 +0000 Subject: [PATCH] Add doc for Skytraq. --- xmldoc/formats/skytraq.xml | 63 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 xmldoc/formats/skytraq.xml diff --git a/xmldoc/formats/skytraq.xml b/xmldoc/formats/skytraq.xml new file mode 100644 index 000000000..c66641f78 --- /dev/null +++ b/xmldoc/formats/skytraq.xml @@ -0,0 +1,63 @@ +Serial download protocol for GPS data loggers based on Skytraq Venus 5 and Venus 6 chipsets. +If your logger came with the Windows software iTravelTech GPS Photo Tagger, chances are that you can +use this format to read its memory. + +Following a list of devices which should be supported by this module +(note that not all of them have actually been tested): + + +Devices supported by skytraq module + + + + Manufacturer + Model + USB (baud) + Bluetooth (baud) + + + + + Navilock + BT-455PDL + untested + untested + + + SJA + "3-in-1" GPS logger + up to 230400 + 9600 + + + ? + Travel Honey + untested + untested + + + +
+ + + Command showing skytraq download of tracks and erasing the logger on Linux + gpsbabel -i skytraq,erase -f /dev/ttyUSB0 -o gpx -F out.gpx + + +If available, reading the logger using bluetooth should also work. However, many devices support only one +specific baud rate over bluetooth, e.g. 9600: + + Command showing skytraq download tracks via bluetooth on Linux + rfcomm bind 0 <bdaddr> + gpsbabel -i skytraq,baud=9600 -f /dev/rfcomm0 -o gpx -F out.gpx + + +The "initbaud" option might be helpful if autodetection fails or takes too long. With this option you +can tell GPSBabel the baud rate the device is currently set to. In contrast, the option "baud" specifies +the rate at which the actual download should take place. If it is different than "initbaud" (or the autodetected +rate, if initbaud wasn't given), the initial setting will be restored after finishing the download. + +If read-at-once >= 1, batch mode is enabled with that many sectors being read at a time. +Under normal circumstances, the larger this number the faster the transfer. +Reducing "read-at-once" might help when you get transmission errors/aborts. +This option only applies to Venus 6 devices; Venus 5 devices always use read-at-once = 0. -- 2.30.2